home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-04 | 421 b | 20 lines | [TEXT/KAHL] |
- // this is the main body for the Yenta application.
- // all it does is create an object of the CPPYenta type
- // and tell it to Go. YentaApp does all the rest
-
- #include "CPPYenta.h"
-
- extern CPPApplication *gApplication;
-
- void main (void)
- {
- gApplication = new CPPYenta ();
-
- if (gApplication)
- {
- gApplication->Initialize ();
- gApplication->Go ();
- gApplication->ShutDown ();
- delete gApplication;
- }
- }